home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2003-014.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  100 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2003:014
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(13999);
  12.  script_bugtraq_id(6763);
  13.  script_version ("$Revision: 1.3 $");
  14.  script_cve_id("CAN-2003-0018");
  15.  
  16.  name["english"] = "MDKSA-2003:014: kernel";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2003:014 (kernel).
  22.  
  23.  
  24. An updated kernel for 9.0 is available with a number of bug fixes. Supermount
  25. has been completely overhauled and should be solid on all systems. Other fixes
  26. include XFS with high memory, a netfilter fix, a fix for Sony VAIO DMI, i845
  27. should now work with UDMA, and new support for VIA C3 is included. Prism24 has
  28. been updated so it now works properly on HP laptops and a new ACPI is included,
  29. although it is disabled by default for broader compatibility.
  30. This also fixes a security problem that allows non-root users to freeze the
  31. kernel, and a fix for a vulnerability in O_DIRECT handling that can create a
  32. limited information leak where any user on the system with write privilege to
  33. the file system from previously deleted files. This also allows users to create
  34. minor file system corruption (this can easily be repaired by fsck).
  35. For instructions on how to update your kernel, please visit
  36. http://www.mandrakesecure.net/en/kernelupdate.php
  37.  
  38.  
  39. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2003:014
  40. Risk factor : High";
  41.  
  42.  
  43.  
  44.  script_description(english:desc["english"]);
  45.  
  46.  summary["english"] = "Check for the version of the kernel package";
  47.  script_summary(english:summary["english"]);
  48.  
  49.  script_category(ACT_GATHER_INFO);
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  52.  family["english"] = "Mandrake Local Security Checks";
  53.  script_family(english:family["english"]);
  54.  
  55.  script_dependencies("ssh_get_info.nasl");
  56.  script_require_keys("Host/Mandrake/rpm-list");
  57.  exit(0);
  58. }
  59.  
  60. include("rpm.inc");
  61. if ( rpm_check( reference:"kernel-2.4.19.24mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  62. {
  63.  security_hole(0);
  64.  exit(0);
  65. }
  66. if ( rpm_check( reference:"kernel-BOOT-2.4.19.24mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  67. {
  68.  security_hole(0);
  69.  exit(0);
  70. }
  71. if ( rpm_check( reference:"kernel-doc-2.4.19-24mdk", release:"MDK9.0", yank:"mdk") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76. if ( rpm_check( reference:"kernel-enterprise-2.4.19.24mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81. if ( rpm_check( reference:"kernel-secure-2.4.19.24mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  82. {
  83.  security_hole(0);
  84.  exit(0);
  85. }
  86. if ( rpm_check( reference:"kernel-smp-2.4.19.24mdk-1-1mdk", release:"MDK9.0", yank:"mdk") )
  87. {
  88.  security_hole(0);
  89.  exit(0);
  90. }
  91. if ( rpm_check( reference:"kernel-source-2.4.19-24mdk", release:"MDK9.0", yank:"mdk") )
  92. {
  93.  security_hole(0);
  94.  exit(0);
  95. }
  96. if (rpm_exists(rpm:"kernel-", release:"MDK9.0") )
  97. {
  98.  set_kb_item(name:"CAN-2003-0018", value:TRUE);
  99. }
  100.